home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / wgdb-42.lha / wgdb-4.2 / gdb / gdbcmd.h < prev    next >
C/C++ Source or Header  |  1992-09-11  |  2KB  |  70 lines

  1. /* Header file for GDB-specific command-line stuff.
  2.    Copyright (C) 1986, 1989, 1990 Free Software Foundation, Inc.
  3.  
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #include "command.h"
  19.  
  20. /* Chain containing all defined commands.  */
  21.  
  22. extern struct cmd_list_element *cmdlist;
  23.  
  24. /* Chain containing all defined info subcommands.  */
  25.  
  26. extern struct cmd_list_element *infolist;
  27.  
  28. /* Chain containing all defined enable subcommands. */
  29.  
  30. extern struct cmd_list_element *enablelist;
  31.  
  32. /* Chain containing all defined disable subcommands. */
  33.  
  34. extern struct cmd_list_element *disablelist;
  35.  
  36. /* Chain containing all defined delete subcommands. */
  37.  
  38. extern struct cmd_list_element *deletelist;
  39.  
  40. /* Chain containing all defined "enable breakpoint" subcommands. */
  41.  
  42. extern struct cmd_list_element *enablebreaklist;
  43.  
  44. /* Chain containing all defined set subcommands */
  45.  
  46. extern struct cmd_list_element *setlist;
  47.  
  48. /* Chain containing all defined unset subcommands */
  49. extern struct cmd_list_element *unsetlist;
  50.  
  51. /* Chain containing all defined show subcommands.  */
  52. extern struct cmd_list_element *showlist;
  53.  
  54. /* Chain containing all defined \"set history\".  */
  55.  
  56. extern struct cmd_list_element *sethistlist;
  57.  
  58. /* Chain containing all defined \"show history\".  */
  59. extern struct cmd_list_element *showhistlist;
  60.  
  61. /* Chain containing all defined \"unset history\".  */
  62.  
  63. extern struct cmd_list_element *unsethistlist;
  64.  
  65. extern struct cmd_list_element *setprintlist;
  66. extern struct cmd_list_element *showprintlist;
  67.  
  68. void execute_command ();
  69. char **noop_completer ();
  70.